home *** CD-ROM | disk | FTP | other *** search
/ Amiga CD-ROM Collection / Amiga CD-ROM Collection - Auge 4000 and Cactus and Demo Util.iso / auge4000 / 46 / lib / string / strchr.c < prev    next >
C/C++ Source or Header  |  1990-06-20  |  284b  |  25 lines

  1.  
  2. /*
  3.  *  STRCHR.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #include <string.h>
  9.  
  10. char *
  11. strchr(toks, c)
  12. const char *toks;
  13. int c;
  14. {
  15.     while (*toks) {
  16.     if (*toks == (char)c)
  17.         return(toks);
  18.     ++toks;
  19.     }
  20.     if (c == 0)
  21.     return(toks);
  22.     return(NULL);
  23. }
  24.  
  25.